Fix broken link in docker readme and add information about single-process image

Dominik Sander 8 years ago
parent
commit
890ed08d0b
3 changed files with 7 additions and 3 deletions
  1. 4 0
      doc/docker/install.md
  2. 2 2
      docker/README.md
  3. 1 1
      docker/multi-process/README.md

+ 4 - 0
doc/docker/install.md

@@ -36,6 +36,10 @@ Getting Huginn up and running using docker is quick and painless once you have d
36 36
 
37 37
 Follow the [instructions on the docker hub registry](https://registry.hub.docker.com/u/cantino/huginn/) on how to configure Huginn using environment variables and linking the container to an external MySQL or PostgreSQL database.
38 38
 
39
+## Running each Huginn process in a seperate container
40
+
41
+With the `cantino/huginn-single-process` image you can easily run each process needed for Huginn in a separate container and scale them individually when needed. Have a look at the [Docker hub](https://hub.docker.com/r/cantino/huginn-single-process/) and the [documentation for the container](https://github.com/cantino/huginn/tree/master/docker/single-process)
42
+
39 43
 ### Other options:
40 44
 
41 45
 Other Docker options:

+ 2 - 2
docker/README.md

@@ -3,10 +3,10 @@ Huginn Docker images
3 3
 
4 4
 Huginn is packaged in two docker images.
5 5
 
6
-#### `cantino/huginn` multiple process image
6
+#### [cantino/huginn](multi-process/README.md) multiple process image
7 7
 
8 8
 This image runs all processes needed by Huginn in one container, when not database is linked it will also start MySQL internally. It is great to try huginn without having to set up anything, however maintenance and backups can be difficult.
9 9
 
10
-#### `cantino/huginn-single-process` multiple container image
10
+#### [cantino/huginn-single-process](single-process/README.md) multiple container image
11 11
 
12 12
 This image runs just one process per container and thus needs at least two container to be started, one for the Huginn application server and one for the threaded background worker. It is also possible to every background worker in a separate container to improve the performance. See [the PostgreSQL docker-compose configuration](single-process/postgres.yml) for an example.

+ 1 - 1
docker/multi-process/README.md

@@ -3,7 +3,7 @@ Huginn for docker with multiple container linkage
3 3
 
4 4
 This image runs a linkable [Huginn](https://github.com/cantino/huginn) instance.
5 5
 
6
-There is an automated build repository on docker hub for [cantino/huginn](https://registry.hub.docker.com/builds/github/cantino/huginn/).
6
+There is an automated build repository on docker hub for [cantino/huginn](https://hub.docker.com/r/cantino/huginn/builds/).
7 7
 
8 8
 This was patterned after [sameersbn/gitlab](https://registry.hub.docker.com/u/sameersbn/gitlab) by [ianblenke/huginn](http://github.com/ianblenke/huginn), and imported here for official generation of a docker hub auto-build image.
9 9